home *** CD-ROM | disk | FTP | other *** search
/ Gigantic Games 2 / Gigantic Games 2.iso / pc / _z_ / zorkmachine / makefile < prev    next >
Makefile  |  1994-12-23  |  285b  |  16 lines

  1. .c.o:
  2.     cc $(CFLAGS) $*.c
  3.  
  4. OBJS        = zmachine.o io.o code.o mem.o zbios.o console.o getopt.o wb.o sound.o
  5.  
  6. # For Aztec `C' 5.2a I suggest using `-wruc'
  7.  
  8. CFLAGS        = -DAMIGA -ms -so -wru
  9.  
  10. all:        ZorkMachine
  11.  
  12. console.o:    console.c ZorkMachine.h
  13.  
  14. ZorkMachine:    $(OBJS)
  15.         ln -o $@ $(OBJS) -lc +cd
  16.